projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fbbb6c
)
asm-generic: global_data: change timebase_l/h to unsigned int
author
Peng Fan
<
[email protected]
>
Tue, 9 May 2017 02:32:03 +0000
(10:32 +0800)
committer
Tom Rini
<
[email protected]
>
Fri, 12 May 2017 12:37:35 +0000
(08:37 -0400)
Change type of timebase_l/h to unsigned int.
>From lib/time.c: ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
This piece code is based on that timebase_h and timebase_l are
32bits width, so change the type to unsigned int.
Signed-off-by: Peng Fan <
[email protected]
>
Cc: Eddie Cai <
[email protected]
>
Cc: Jagan Teki <
[email protected]
>
Cc: York Sun <
[email protected]
>
Cc: "Robert P. J. Day" <
[email protected]
>
Cc: Michal Simek <
[email protected]
>
Cc: Tom Rini <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
include/asm-generic/global_data.h
patch
|
blob
|
history
diff --git
a/include/asm-generic/global_data.h
b/include/asm-generic/global_data.h
index 1a77c982fa3a5ab75ac533562312780e271915f2..51838b5ead6631cc601509046eec53bc9664bbd3 100644
(file)
--- a/
include/asm-generic/global_data.h
+++ b/
include/asm-generic/global_data.h
@@
-83,8
+83,8
@@
typedef struct global_data {
#ifdef CONFIG_SYS_I2C_MXC
void *srdata[10];
#endif
- unsigned
long
timebase_h;
- unsigned
long
timebase_l;
+ unsigned
int
timebase_h;
+ unsigned
int
timebase_l;
#ifdef CONFIG_SYS_MALLOC_F_LEN
unsigned long malloc_base; /* base address of early malloc() */
unsigned long malloc_limit; /* limit address */